home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / HIERSV.PAK / HIERSVR.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  45 lines

  1. // hiersvr.h : main header file for the HIERSVR application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14. #ifndef __AFXWIN_H__
  15.     #error include 'stdafx.h' before including this file for PCH
  16. #endif
  17.  
  18. #include "resource.h"       // main symbols
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CServerApp:
  22. // See hiersvr.cpp for the implementation of this class
  23. //
  24.  
  25. class CServerApp : public CWinApp
  26. {
  27. public:
  28.     CServerApp();
  29.  
  30. // Overrides
  31.     virtual BOOL InitInstance();
  32.     virtual int ExitInstance();
  33.  
  34. // Implementation
  35. protected:
  36.     COleTemplateServer m_server;
  37.  
  38.     //{{AFX_MSG(CServerApp)
  39.     afx_msg void OnAppAbout();
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45.